home *** CD-ROM | disk | FTP | other *** search
/ Amiga Games Extra 1996 September / Amiga Games Extra CD-ROM 9-1996.iso / userbox / publicdomain / vim-4.2 / src / ascii.h < prev    next >
Text File  |  1996-06-09  |  786b  |  33 lines

  1. /* vi:set ts=4 sw=4:
  2.  *
  3.  * VIM - Vi IMproved        by Bram Moolenaar
  4.  *
  5.  * Do ":help uganda"  in Vim to read copying and usage conditions.
  6.  * Do ":help credits" in Vim to see a list of people who contributed.
  7.  */
  8.  
  9. /*
  10.  * Definitions of various common control characters
  11.  */
  12.  
  13. #define NUL                     '\000'
  14. #define TAB                     '\011'
  15. #define NL                        '\012'
  16. #define NL_STR                    (char_u *)"\012"
  17. #define CR                        '\015'
  18. #define ESC                     '\033'
  19. #define ESC_STR                 (char_u *)"\033"
  20. #define DEL                     0x7f
  21. #define CSI                     0x9b
  22.  
  23. #define Ctrl(x) ((x) & 0x1f)
  24. #define Meta(x) ((x) | 0x80)
  25.  
  26. /*
  27.  * Character that separates dir names in a path.
  28.  * For MS-DOS and WIN32 we also use the slash, the backslash causes trouble in
  29.  * a command line and the slash works fine.
  30.  */
  31. #define PATHSEP '/'
  32. #define PATHSEPSTR "/"
  33.